home *** CD-ROM | disk | FTP | other *** search
/ Enter Special 5: Digital Photography / ENTER Special 05.iso / Grafika / Paint Shop Pro 8.0 / psp800ev.exe / Data1.cab / Preset_OuterBevel_Metallic.P < prev    next >
Encoding:
Text File  |  2003-04-22  |  623 b   |  29 lines

  1. from JascApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': '',
  6.         'Copyright': '',
  7.         'Description': '',
  8.         'Host': 'Paint Shop Pro',
  9.         'Host Version': '8.00'
  10.         }
  11.  
  12. def Preset_OuterBevel():
  13.     return {
  14.         'Ambience': 0, 
  15.         'Angle': 315, 
  16.         'Bevel': 0, 
  17.         'Color': (255,255,255), 
  18.         'Depth': 5, 
  19.         'Elevation': 40, 
  20.         'Intensity': 25, 
  21.         'Shininess': 80, 
  22.         'Smoothness': 10, 
  23.         'Width': 1
  24.         }
  25.  
  26. def Do(Environment):
  27.     App.Do( Environment, 'OuterBevel',         Preset_OuterBevel())
  28.  
  29.